include "gdk/gdk.h" instead of "gdk/gdkscreen.h"
authorMichael Natterer <mitch@imendio.com>
Mon, 26 May 2008 09:51:48 +0000 (09:51 +0000)
committerMichael Natterer <mitch@src.gnome.org>
Mon, 26 May 2008 09:51:48 +0000 (09:51 +0000)
2008-05-26  Michael Natterer  <mitch@imendio.com>

* gtk/gtkshow.h: include "gdk/gdk.h" instead of "gdk/gdkscreen.h"

* gtk/gtkshow.c: remove inclusion of single files from gdk/

Removed trailing whitespace in both files.

svn path=/trunk/; revision=20176

ChangeLog
gtk/gtkshow.c
gtk/gtkshow.h

index cfb92b57ee20736ee440b3709f4f82946297283c..b2ee5345598c460f6ccabc4a4778b0e5fba514ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-05-26  Michael Natterer  <mitch@imendio.com>
+
+       * gtk/gtkshow.h: include "gdk/gdk.h" instead of "gdk/gdkscreen.h"
+
+       * gtk/gtkshow.c: remove inclusion of single files from gdk/
+
+       Removed trailing whitespace in both files.
+
 2008-05-26  Richard Hult  <richard@imendio.com>
 
        Bug 530353 – Mac-like gtk_accelerator_get_label()
index 949f67b6e6769d8ddb680c38b92c6b136b1c0cf5..eef90d2962b7ce0c11853154308dbc169ae5e3e2 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
  * GTK - The GIMP Toolkit
  * Copyright (C) 2008  Jaap Haitsma <jaap@haitsma.org>
  *
@@ -24,8 +24,6 @@
 
 #include <glib.h>
 #include <gio/gio.h>
-#include "gdk/gdkscreen.h"
-#include "gdk/gdkapplaunchcontext.h"
 
 #include "gtkshow.h"
 
  * gtk_show_uri:
  * @screen: screen to show the uri on or %NULL for the default screen
  * @uri: the uri to show
- * @timestamp: a timestamp to prevent focus stealing. 
+ * @timestamp: a timestamp to prevent focus stealing.
  * @error: a #GError that is returned in case of errors
  *
- * This is a convenience function for launching the default application 
+ * This is a convenience function for launching the default application
  * to show the uri. The uri must be of a form understood by GIO. Typical
- * examples are 
+ * examples are
  * <simplelist>
  *   <member><filename>file:///home/gnome/pict.jpg</filename></member>
  *   <member><filename>http://www.gnome.org</filename></member>
  *   <member><filename>mailto:me&commat;gnome.org</filename></member>
  * </simplelist>
- * Ideally the timestamp is taken from the event triggering 
- * the gtk_show_uri() call. If timestamp is not known you can take 
+ * Ideally the timestamp is taken from the event triggering
+ * the gtk_show_uri() call. If timestamp is not known you can take
  * %GDK_CURRENT_TIME.
  *
- * This function can be used as a replacement for gnome_vfs_url_show() 
+ * This function can be used as a replacement for gnome_vfs_url_show()
  * and gnome_url_show().
  *
  * Returns: %TRUE on success, %FALSE on error.
@@ -59,9 +57,9 @@
  * Since: 2.14
  */
 gboolean
-gtk_show_uri (GdkScreen    *screen, 
-              const gchar  *uri, 
-              guint32       timestamp, 
+gtk_show_uri (GdkScreen    *screen,
+              const gchar  *uri,
+              guint32       timestamp,
               GError      **error)
 {
   GdkAppLaunchContext *context;
index 9a3faf015a1f93c1076f727492d38617ff5be8d1..02e25f686fcb0d6e07b4b2228788cd85bb67be5e 100644 (file)
@@ -1,4 +1,4 @@
-/* 
+/*
  * GTK - The GIMP Toolkit
  * Copyright (C) 2008  Jaap Haitsma <jaap@haitsma.org>
  *
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+
 #ifndef __GTK_SHOW_H__
 #define __GTK_SHOW_H__
 
 #include <glib.h>
-#include "gdk/gdkscreen.h"
+#include "gdk/gdk.h"
 
 G_BEGIN_DECLS
 
-gboolean gtk_show_uri  (GdkScreen   *screen, 
-                        const gchar *uri, 
-                        guint32      timestamp, 
+gboolean gtk_show_uri  (GdkScreen   *screen,
+                        const gchar *uri,
+                        guint32      timestamp,
                         GError     **error);
 
 G_END_DECLS
 
 #endif /* __GTK_SHOW_H__ */
-
-
-